CellAccessible: Fix return type of row|column_span
authorDaniel Boles <dboles.src@gmail.com>
Sun, 30 Dec 2018 18:15:11 +0000 (18:15 +0000)
committerDaniel Boles <dboles.src@gmail.com>
Sun, 30 Dec 2018 18:15:11 +0000 (18:15 +0000)
See:
 * c876c74eb73fe6daa279b42f9e0a9566ba1ced87
 * 63e0eb5de5d5a14afadebab31fe679beb6706cb2

gtk/a11y/gtkcellaccessible.c

index 67f7dc8736af7d2eb2acd171309389faa23a6542..239032331ef99134061209aae85423f6459946c5 100644 (file)
@@ -368,7 +368,7 @@ atk_component_interface_init (AtkComponentIface *iface)
   iface->grab_focus = gtk_cell_accessible_grab_focus;
 }
 
-static gboolean
+static int
 gtk_cell_accessible_get_column_span (AtkTableCell *table_cell)
 {
   return 1;
@@ -404,7 +404,7 @@ gtk_cell_accessible_get_position (AtkTableCell *table_cell,
   return ((row && *row > 0) || (column && *column > 0));
 }
 
-static gboolean
+static int
 gtk_cell_accessible_get_row_span (AtkTableCell *table_cell)
 {
   return 1;